home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / about.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  988 b   |  34 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef AboutH
  3. #define AboutH
  4. //----------------------------------------------------------------------------
  5. #include <System.hpp>
  6. #include <Windows.hpp>
  7. #include <SysUtils.hpp>
  8. #include <Classes.hpp>
  9. #include <Graphics.hpp>
  10. #include <Forms.hpp>
  11. #include <Controls.hpp>
  12. #include <StdCtrls.hpp>
  13. #include <Buttons.hpp>
  14. #include <ExtCtrls.hpp>
  15. //----------------------------------------------------------------------------
  16. class TAboutBox : public TForm
  17. {
  18. __published:
  19.     TPanel *Panel1;
  20.     TImage *ProgramIcon;
  21.     TLabel *ProductName;
  22.     TLabel *Version;
  23.     TLabel *Copyright;
  24.     TLabel *Comments;
  25.     TButton *OKButton;
  26. private:
  27. public:
  28.     virtual __fastcall TAboutBox(TComponent* AOwner);
  29. };
  30. //----------------------------------------------------------------------------
  31. extern PACKAGE TAboutBox *AboutBox;
  32. //----------------------------------------------------------------------------
  33. #endif
  34.